home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
The PC-SIG Library 10
/
The PC-Sig Library - Shareware for the IBM PC and Compatibles (PC-SIG)(Tenth Edition Disks 1-2804)(1991).iso
/
PC_SIGCD
/
07
/
9
/
DISK0797.ZIP
/
START.BAT
< prev
next >
Wrap
DOS Batch File
|
1991-02-05
|
2KB
|
55 lines
echo off
echo
:BEGINNING
cls
xcol 7 1 4
echo
echo
echo
echo
echo ┌───────────────────────────────────────────────────────────────────────┐
echo │ │
echo │ Test series of programs startup batch file │
echo │ │
echo │ To start the introduction (INTRO.TST) in TRAIN mode, enter I │
echo │ INTRO.TST is an ASCII file and can be printed │
echo │ │
echo │ To start the documentation (DOC.TST) in TRAIN mode, enter D │
echo │ DOC.TST is encoded and CANNOT be printed │
echo │ │
echo │ To start the sample (SAMPLE.TST) in train mode, enter S │
echo │ SAMPLE.TST is an ASCII file and can be printed │
echo │ │
echo │ To exit from the batch file, enter X │
echo │ │
echo ├───────────────────────────────────────────────────────────────────────┤
echo │ │
echo │ The printable documentation is located in the file DOC.TXT │
echo │ │
echo └───────────────────────────────────────────────────────────────────────┘
echo
echo
:AGAIN
keypress x X s S I i D d
if errorlevel 7 goto DOC
if errorlevel 5 goto INTRO
if errorlevel 3 goto SAMPLE
if errorlevel 1 goto OUT
goto AGAIN
:DOC
TRAIN DOC
goto BEGINNING
:INTRO
TRAIN INTRO
goto BEGINNING
:SAMPLE
TRAIN SAMPLE
goto BEGINNING
:OUT
xcol 1 0 0
echo
echo
cls
echo To rerun the batch file, enter START.
echo